home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / LISP Related / Generalized LISP / Glisp 1.2 / Source files / Constants.glisp < prev    next >
Encoding:
Text File  |  1990-08-14  |  662 b   |  23 lines  |  [TEXT/CCL ]

  1.  
  2. ~---------------------------------------------------------------------------------------~
  3. ~                Glisp constants                        ~
  4. ~---------------------------------------------------------------------------------------~
  5.  
  6. -Mlisp-
  7.  
  8. export('`(!eof !eofChar !failure !noValue !lParen !rParen), `:glisp);
  9.  
  10.  
  11. constant
  12.     !eof     := '`#:end-of-file,    ~ the Glisp reader returns this at end-of-file
  13.  
  14.     !eofChar := '`#\Null,        ~ Glisp char readers return this at end-of-file
  15.  
  16.     !failure := '`#:failure,    ~ the tag to jump to on failure
  17.  
  18.     !noValue := '`#:no-value,    ~ indicates that a Plisp function has no value
  19.  
  20.     !lParen  := '\( ,        ~ kludges to get around reader troubles
  21.  
  22.     !rParen  := '\) ;
  23.